home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Profi Tools / DiskSpeed / src / makeboxes.h < prev    next >
C/C++ Source or Header  |  1998-07-30  |  2KB  |  60 lines

  1. /*
  2.  * MKSoft Development Amiga ToolKit V1.0
  3.  *
  4.  *                          DiskSpeed v4.2
  5.  *                          ScsiSpeed v4.2
  6.  *                                by
  7.  *                           Michael Sinz
  8.  *
  9.  *            Copyright (c) 1989-1992 by MKSoft Development
  10.  *
  11.  *            MKSoft Development
  12.  *            163 Appledore Drive
  13.  *            Downingtown, PA 19335
  14.  *
  15.  * Yes, this is yet another disk speed testing program, but with a few
  16.  * differences.  It was designed to give the most accurate results of the
  17.  * true disk performance in the system.  For this reason many of
  18.  * DiskSpeed's results may look either lower or higher than current disk
  19.  * performance tests.
  20.  *
  21.  ******************************************************************************
  22.  *                                          *
  23.  *    Reading legal mush can turn your brain into guacamole!              *
  24.  *                                          *
  25.  *        So here is some of that legal mush:                  *
  26.  *                                          *
  27.  * Permission is hereby granted to distribute this program's source          *
  28.  * executable, and documentation for non-commercial purposes, so long as the  *
  29.  * copyright notices are not removed from the sources, executable or          *
  30.  * documentation.  This program may not be distributed for a profit without   *
  31.  * the express written consent of the author Michael Sinz.              *
  32.  *                                          *
  33.  * This program is not in the public domain.                      *
  34.  *                                          *
  35.  * Fred Fish is expressly granted permission to distribute this program's     *
  36.  * source and executable as part of the "Fred Fish freely redistributable     *
  37.  * Amiga software library."                              *
  38.  *                                          *
  39.  * Permission is expressly granted for this program and it's source to be     *
  40.  * distributed as part of the Amicus Amiga software disks, and the          *
  41.  * First Amiga User Group's Hot Mix disks.                      *
  42.  *                                          *
  43.  ******************************************************************************
  44.  */
  45.  
  46. /*
  47.  * Make border structures with the correct box info...
  48.  */
  49.  
  50. #ifndef    MKS_MAKEBOXES_H
  51. #define    MKS_MAKEBOXES_H
  52.  
  53. #include    <exec/types.h>
  54. #include    <intuition/intuition.h>
  55.  
  56. VOID    FillTopLeft_Border(struct Border *,SHORT,SHORT);
  57. VOID    FillBottomRight_Border(struct Border *,SHORT,SHORT);
  58.  
  59. #endif    /* MKS_MAKEBOXES_H */
  60.